Motion 2 Click
Motion 2 Click demo application is developed using the NECTO Studio, ensuring compatibility with mikroSDK's open-source libraries and tools. Designed for plug-and-play implementation and testing, the demo is fully compatible with all development, starter, and mikromedia boards featuring a mikroBUS™ socket.
Click Library
- Author : Jelena Milosavljevic
- Date : Jun 2021.
- Type : GPIO type
Software Support
Example Description
This example demonstrates the use of Motion 2 Click boards.
Example Libraries
- MikroSDK.Board
- MikroSDK.Log
- Click.Motion2
Example Key Functions
- motion2_cfg_setup Config Object Initialization function.
void motion2_cfg_setup(motion2_cfg_t *cfg)
Config Object Initialization function.
Motion 2 Click configuration object.
Definition motion2.h:121
- motion2_init Initialization function.
err_t motion2_init(motion2_t *ctx, motion2_cfg_t *cfg)
Initialization function.
motion2_return_value_t
Motion 2 Click return value data.
Definition motion2.h:134
Motion 2 Click context object.
Definition motion2.h:105
- motion2_enable Enable motion sensor function.
void motion2_enable(motion2_t *ctx, uint8_t state)
Enable motion sensor function.
- motion2_detect_state Get detection state function.
uint8_t motion2_detect_state(motion2_t *ctx)
Get detection state function.
Application Init
Initializes the driver and enables the motion sensor.
{
log_cfg_t log_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, "---- Application Init ----" );
if (
motion2_init( &motion2, &motion2_cfg ) == DIGITAL_OUT_UNSUPPORTED_PIN ) {
log_error( &logger, " Application Init Error. " );
log_info( &logger, " Please, run program again... " );
for ( ; ; );
}
Delay_ms ( 100 );
log_printf( &logger, "The sensor is ready.\r\n" );
log_printf( &logger, "-----------------------\r\n" );
}
#define MOTION2_MAP_MIKROBUS(cfg, mikrobus)
MikroBUS pin mapping.
Definition motion2.h:93
#define MOTION2_MODULE_ENABLE
MikroBUS pin set.
Definition motion2.h:72
void application_init(void)
Definition main.c:36
Application Task
It checks if the sensor has detected movement and therefore displays the desired message on the USB UART.
{
uint8_t int_status;
log_printf( &logger, "Motion detected!\r\n" );
log_printf( &logger, "-----------------------\r\n" );
}
log_printf( &logger, "The sensor is ready.\r\n" );
log_printf( &logger, "-----------------------\r\n" );
Delay_ms ( 100 );
}
}
#define MOTION2_DETECT_OBJECT
Definition motion2.h:75
void application_task(void)
Definition main.c:72
Application Output
This Click board can be interfaced and monitored in two ways:
- Application Output - Use the "Application Output" window in Debug mode for real-time data monitoring. Set it up properly by following this tutorial.
- UART Terminal - Monitor data via the UART Terminal using a USB to UART converter. For detailed instructions, check out this tutorial.
Additional Notes and Information
The complete application code and a ready-to-use project are available through the NECTO Studio Package Manager for direct installation in the NECTO Studio. The application code can also be found on the MIKROE GitHub account.